home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-11 | 1.7 KB | 130 lines | [TEXT/CWIE] |
- // DModalRadiosData.cp -- data container class for Everything
-
- #include "DModalRadiosData.h"
-
- #include <LFileStream.h>
-
-
- //----------
- DModalRadiosData::DModalRadiosData ()
- {
- mRadioGroup2 = 0;
- mGroup2 = 0;
- mGraphic3 = 0;
- mBevel2 = 0;
- mText2 = 0;
- }
-
- //----------
- DModalRadiosData::~DModalRadiosData ()
- {
- }
-
- //----------
- void DModalRadiosData::CopyFrom (
- DModalRadiosData* inOther)
- {
- mRadioGroup2 = inOther->mRadioGroup2;
- mGroup2 = inOther->mGroup2;
- mGraphic3 = inOther->mGraphic3;
- mBevel2 = inOther->mBevel2;
- mText2 = inOther->mText2;
- }
-
- //----------
- void DModalRadiosData::ReadFromFile (
- LFileStream* inFile)
- {
- }
-
- //----------
- void DModalRadiosData::WriteToFile (
- LFileStream* inFile)
- {
- }
-
-
- //----------
- SInt16 DModalRadiosData::GetRadioGroup2 () const
- {
-
- return mRadioGroup2;
- }
-
- //----------
- void DModalRadiosData::SetRadioGroup2 (
- SInt16 inValue)
- {
- mRadioGroup2 = inValue;
-
- SignalDataChanged (idRadioGroup2);
- }
-
-
- //----------
- SInt16 DModalRadiosData::GetGroup2 () const
- {
-
- return mGroup2;
- }
-
- //----------
- void DModalRadiosData::SetGroup2 (
- SInt16 inValue)
- {
- mGroup2 = inValue;
-
- SignalDataChanged (idGroup2);
- }
-
-
- //----------
- SInt16 DModalRadiosData::GetGraphic3 () const
- {
-
- return mGraphic3;
- }
-
- //----------
- void DModalRadiosData::SetGraphic3 (
- SInt16 inValue)
- {
- mGraphic3 = inValue;
-
- SignalDataChanged (idGraphic3);
- }
-
-
- //----------
- SInt16 DModalRadiosData::GetBevel2 () const
- {
-
- return mBevel2;
- }
-
- //----------
- void DModalRadiosData::SetBevel2 (
- SInt16 inValue)
- {
- mBevel2 = inValue;
-
- SignalDataChanged (idBevel2);
- }
-
-
- //----------
- SInt16 DModalRadiosData::GetText2 () const
- {
-
- return mText2;
- }
-
- //----------
- void DModalRadiosData::SetText2 (
- SInt16 inValue)
- {
- mText2 = inValue;
-
- SignalDataChanged (idText2);
- }
-